home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 3 / Gold Medal Software - Volume 3 (Gold Medal) (1994).iso / prog / prog914.arj / WALLPAPR.BAS < prev   
BASIC Source File  |  1994-01-27  |  673b  |  20 lines

  1. 10 REM *** START *** WALLPAPR.BAS / 01-27-1994 / 08:43:20
  2. 20 REM *** This BASIC program was generated by PROGRAM.EXE
  3. 30 REM *** A shareware program written by IRA F. KAVALER.
  4. 40 KEY OFF: CLS: REM *** Turn off F-key labels & clear screen.
  5. 45 PRINT "Enter the room size in feet."
  6. 50 INPUT "What is the width of the room";W
  7. 60 INPUT "What is the length of the room";L
  8. 70 LET P=2*L+2*W
  9. 80 INPUT "What is the ceiling height";H
  10. 90 LET A=P*H
  11. 100 LET N=A/30
  12. 110 INPUT "How many doors are there";ND
  13. 120 INPUT "How many windows are there";NW
  14. 130 LET OP=ND+NW
  15. 140 LET SR=N-OP/2
  16. 145 PRINT
  17. 150 PRINT "You will need";SR
  18. 160 PRINT "single rolls of wallpaper."
  19. 170 END
  20.